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