@extends('app') @section('head_title',trans('words.register').' | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif {!! Form::open(array('url' => 'register','class'=>'card mb-0','id'=>'register','role'=>'form')) !!}

{{trans('words.already_have_account')}} {{trans('words.login')}}

{!! Form::close() !!}
@endsection