@extends('backEnd.layout') @section('content')

المصور {{$photographer->name}}

{{ trans('backLang.home') }} / {{ trans('backLang.settings') }} /
{{Form::open(['route'=>['photographer.update',$photographer],'method'=>'put' ])}}
{!! Form::text('name',$photographer->name, array('placeholder' => '','class' => 'form-control','id'=>'name','required'=>'')) !!}
{!! Form::email('email',$photographer->email, array('placeholder' => '','class' => 'form-control','id'=>'email','required'=>'')) !!}
{!! Form::tel('phone',$photographer->phone, array('placeholder' => '','pattern'=>'[0-9]{11}','class' => 'form-control','id'=>'phone','required'=>'')) !!}
{{--
--}} {{-- --}} {{--
--}} {{-- {!! Form::number('price',old('price',$photographer->price), array('placeholder' => '','step'=>'any','class' => 'form-control','id'=>'price','required'=>'')) !!}--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}}
{!! Form::textarea('description',$photographer->description, array('placeholder' => '','class' => 'form-control','id'=>'description')) !!}
{!! trans('backLang.cancel') !!}
{{Form::close()}}
@endsection