@extends('admin.layout.app') @section('more-head') @endsection @section('main-content') MANAGER MANAGER @include('includes.messages') {{ csrf_field() }} {{ method_field('PUT') }} Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif E-Mail Address @if ($errors->has('email')) {{ $errors->first('email') }} @endif Phone @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif Rank @if ($errors->has('rank')) {{ $errors->first('rank') }} @endif Start Date @if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif End Date @if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif Branch / Take-Over Center Select Take Over Center. @foreach ($ports as $port) id == $manager->port_id) selected @endif value="{{ $port->id }}">{{ $port->name }} @endforeach Department Select Department. @foreach ($departments as $department) id == $manager->department_id) selected @endif value="{{ $department->id }}"> {{ $department->name }} @endforeach Signature: signature }}> {{-- Status Select Status status == 0) selected @endif>Inactive status == 1) selected @endif>Active --}} @if ($manager->signature != null) Signature Image: @endif Save @endsection @section('more-scripts') @endsection