@extends('admin.layout') @section('content')
{{__('Branches.Branches_Add')}}
@if(count($errors)>0)
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif {!! Form::open(['method'=>'post','action'=>'Admin\BranchesController@store','files'=>true]) !!}
{!! Form::text('title_ar',null,['class'=>'form-control','placeholder'=>__('Branches.title_ar')]) !!}
{!! Form::text('title_en',null,['class'=>'form-control','placeholder'=>__('Branches.title_en')]) !!}
{!! Form::text('adress',null,['class'=>'form-control','placeholder'=>__('Branches.adress')]) !!}
{!! Form::text('phone',null,['class'=>'form-control','placeholder'=>__('Branches.phone')]) !!}
{!! Form::text('times_of_work',null,['class'=>'form-control','placeholder'=>__('Branches.times_of_work')]) !!}
{!! Form::text('location_lat',null,['class'=>'form-control','id'=>'location_lat','placeholder'=>__('Branches.location_lat')]) !!}
{!! Form::text('location_lon',null,['class'=>'form-control','id'=>'location_lon','placeholder'=>__('Branches.location_lon')]) !!}
{!! Form::submit(__('General.Save'),['class'=>'btn btn-primary form-control']) !!}
{!! Form::Close() !!}
@endsection