@extends('admin.layouts.master') @section('content')
All Contractor Edit
@if(session('success'))
{{session('success')}}
@endif
Home
All Contractor Edit
@csrf
Name
@if($errors->has('name'))
{{$errors->first('name')}}
@endif
{{--
Public Holiday Pay
{{$errors->first('public_holiday_pay')}}
Sat Pay
{{$errors->first('sat_pay')}}
Sun Pay
{{$errors->first('sun_pay')}}
--}} @foreach ($contractor->shift_types as $shifttypes)
Shift Type
Pay Type
Select Pay Type
pivot) && $shifttypes->pivot->pay_type=="fixed") selected @endif >Fixed
pivot) && $shifttypes->pivot->pay_type=="percentage") selected @endif >Percentage
pivot) && $shifttypes->pivot->pay_type=="hourly") selected @endif >Hourly
Pay
Sat Pay
Sun Pay
Public Holiday Pay
@endforeach {{-- @foreach ($shifttype as $shifttypes2)
Shift Type
Pay Type
Select Pay Type
Fixed
Percentage
Hourly
Pay
@endforeach --}}
Submit
Cancel
@endsection