Засах
{{ Form::open(['method' => 'put', 'url' => '/admin/contact/' . $item->id]) }}
{{ Form::label('lang_id', 'Хэл') }}
{{ $errors->has('lang_id') ? $errors->first('lang_id') : '' }}
{{ Form::label('facebook', 'Facebook') }}
{{ Form::text('facebook', $item->facebook, ['class' => 'form-control', 'placeholder' => 'Facebook']) }}
{{ $errors->has('facebook') ? $errors->first('facebook') : '' }}
{{ Form::label('twitter', 'Twitter') }}
{{ Form::text('twitter', $item->twitter, ['class' => 'form-control', 'placeholder' => 'Twitter']) }}
{{ $errors->has('twitter') ? $errors->first('twitter') : '' }}
{{ Form::label('youtube', 'Youtube') }}
{{ Form::text('youtube', $item->youtube, ['class' => 'form-control', 'placeholder' => 'Youtube']) }}
{{ $errors->has('youtube') ? $errors->first('youtube') : '' }}
{{ Form::label('phone', 'Phone') }}
{{ Form::text('phone', $item->phone, ['class' => 'form-control', 'placeholder' => 'Phone']) }}
{{ $errors->has('phone') ? $errors->first('phone') : '' }}
{{ Form::label('email', 'Email') }}
{{ Form::email('email', $item->email, ['class' => 'form-control', 'placeholder' => 'email']) }}
{{ $errors->has('email') ? $errors->first('email') : '' }}
{{ Form::label('website', 'Website') }}
{{ Form::text('website', $item->website, ['class' => 'form-control', 'placeholder' => 'Website']) }}
{{ $errors->has('website') ? $errors->first('website') : '' }}
{{ Form::label('address', 'Дэлгэрэнгүй мэдээлэл') }}
{{ $errors->has('address') ? $errors->first('address') : '' }}
{{ Form::submit('Хадгалах', ['class' => 'btn btn-primary']) }}