@extends('layouts.app') @section('content')

@lang('lang.edit') @lang('models/cars.singular')

@include('adminlte-templates::common.errors')
{!! Form::model($car, ['route' => ['admin.cars.update', $car->id], 'method' => 'patch','files'=>true]) !!}
@include('admin.cars.fields')
{!! Form::close() !!}
@endsection