@stack('third_party_stylesheets') @stack('page_css')
@include('layouts.sidebar')

Edit City

@if(Session::has('success'))
{{ Session::get('success') }} @php Session::forget('success'); @endphp
@endif
{!! Form::model($getCardDet, ['route' => ['discover-cards-update', $getCardDet->id], 'method' => 'patch','files' => true]) !!}
{!! Form::label('title', 'Title:') !!} {!! Form::text('title', null, ['class' => 'form-control']) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::label('image', 'Image') !!}
{!! Form::file('image', ['class' => 'custom-file-input','accept'=>'image/*']) !!} {!! Form::label('image', 'Choose file', ['class' => 'custom-file-label']) !!}
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
{!! Form::label('url', 'Url:') !!} {!! Form::text('url', null, ['class' => 'form-control']) !!} @if ($errors->has('url')) {{ $errors->first('url') }} @endif
{!! Form::label('city_id', 'City:') !!}
@push('page_scripts') @endpush @push('page_scripts') @endpush
{!! Form::close() !!}
@stack('third_party_scripts') @stack('page_scripts')