@extends('layouts.app') @section('content')
{{ Form::open(['url' => 'profile/' . $data['data']->id, 'method' => 'PUT', 'id' => 'update_profile']) }}
@role('contractor')

My Services

@foreach($data['services'] as $service)

{{ $service->service }}

@foreach($service->active_subservices as $subservice) {{ Form::checkbox('services[]', $subservice->id, in_array($subservice->id,$data['user_services']), ['style' => 'display: inline; height: inherit !important;width: inherit !important; margin-left: 5px']) }} {{ $subservice->service }}.
@endforeach @endforeach
@endrole
@if (session('status')) @endif

My Account

First Name
Last Name
Account Type
Email
@hasanyrole('customer|contractor')
Area
Operating Hours / Availablity
@endrole
@hasanyrole('customer|contractor')

My Profile

  • Set your minimal hourly rate
    R
    Skills
    Angular Vue JS iOS Android Laravel
    Attachments
    Cover Letter PDF
    Contract DOCX
    Maximum file size: 10 MB
  • Tagline
    Nationality
    Introduce Yourself
@endrole

Password & Security

Current Password
New Password
Repeat New Password
{{ Form::submit('Save Changes', ['class'=>'button ripple-effect big margin-top-30']) }}
@endsection