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::close() !!}
{!! Form::label('title', 'Title:') !!}
{!! Form::text('title', null, ['class' => 'form-control']) !!}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
{!! Form::label('image', 'Image') !!}
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
{!! Form::file('image', ['class' => 'custom-file-input','accept'=>'image/*']) !!}
{!! Form::label('image', 'Choose file', ['class' => 'custom-file-label']) !!}
{!! 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