@extends('Admin.layouts.app') @section('content')

Edit Employee

{{-- --}}
@if($errors->any()) @endif
{{ Form::model($employee, array('route' => array('employee.update', $employee->id), 'method' => 'PUT','enctype'=>'multipart/form-data')) }} {{ csrf_field() }}
Name
Username
Phone
@php $selectedCountries = explode(',', $employee->country); // Convert to array @endphp
Country
Action
{!! Form::close() !!}
@endsection