@extends('cms.application') @section('content')
Edit Stations
{!! Form::model($stations, ['route' => ['cms.stations.update', $stations->id], 'files' => true, 'method' => 'PATCH']) !!} @include('cms.includes.cropimage',['img' => asset('/uploads/stations/'.$stations->photo_url)]) @include('cms.stations._form', ['submitButton' => "Update"]) {!! Form::close() !!}
@stop