{!! Form::label('name', 'State Name') !!} {!! Form::text('name', old('name'), ['class' => 'form-control']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::label('country_id', 'Country') !!} {!! Form::select('country_id', $countries, old('country_id'), ['class' => 'select2 form-control']) !!} @if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
{!! Form::submit('Save', ['class' => 'btn btn-primary btn-flat']) !!} Cancel
@section('inlineJS') @endsection