@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('counties.edit_county') }}

@include('flash::message')
{{ Form::model($county, ['method' => 'PUT', 'route' => ['counties.update',$county], 'data-toggle' => 'validator']) }}
{{ Form::label('district_id', __('counties.district')) }} {{ Form::select('district_id', $districts, $county->district_id, ['class' => 'form-control compulsory' , 'required', 'id' => 'district']) }}
{{ Form::label('name', __('counties.county_name')) }} {{ Form::text('name', $county->name, ['class' => 'form-control compulsory', 'required']) }}
{{ Form::button(__('counties.submit'),['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }} {{ Form::button(__('counties.cancel'),['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }} {{ Form::close() }}
@endsection @push('scripts') @endpush