@extends('admin.layout.app') @section('more-head')
@endsection @section('main-content')
USERS
user
{{ csrf_field() }} {{method_field('PUT')}}
username
@if ($errors->has('username'))
{{ $errors->first('username') }}
@endif
E-Mail Address
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Password
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
Confirm Password
Select LBC
Select LBC.
@foreach ($lbcs as $lbc)
id == $user->lbc_id) selected @endif value="{{$lbc->id}}">{{$lbc->name}}
@endforeach
Select Roles
@foreach ($roles as $role)
roles as $userrole) @if ($userrole->id ==$role->id ) selected @endif @endforeach value="{{$role->id}}">{{$role->name}}
@endforeach
Select warehouse
Select Warehouse
None
@foreach ($warehouses as $warehouse)
warehouse_id == $warehouse->id) selected @endif>{{$warehouse->name}}
@endforeach
Select shed
Select shed
None
@foreach ($sheds as $shed)
shed_id == $shed->id) selected @endif>{{$shed->name}}
@endforeach
Select TOC
Select port
@foreach ($ports as $port)
id == $user->port_id) selected @endif>{{$port->name}}
@endforeach
Signature:
user Status
status == 0) selected @endif>Inactive
status == 1) selected @endif>Active
@if ($user->signature != NULL)
Signature Image:
@endif
Select Factory
Select Factory.
@foreach ($consignees as $consignee)
consignee_id == $consignee->id) selected @endif value="{{$consignee->id}}">{{$consignee->name}}
@endforeach
Edit user
@endsection @section('more-scripts') @endsection